home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000301_news@newsmaster….columbia.edu _Sat Nov 14 18:06:55 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA05618
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 14 Nov 1998 18:06:55 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA21714
  7.     for kermit.misc@watsun; Sat, 14 Nov 1998 18:06:55 -0500 (EST)
  8. Path: news.columbia.edu!panix!howland.erols.net!newsfeed.berkeley.edu!xmission!news.cc.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: check tcp/ip
  12. Message-ID: <CCP0WFR78iFj@cc.usu.edu>
  13. Date: 14 Nov 98 15:31:15 MDT
  14. References: <7276a4$l10$1@garfield.vcn.bc.ca> <72kehr$1gd$1@garfield.vcn.bc.ca>
  15. Organization: Utah State University
  16. Lines: 48
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:9508
  18.  
  19. In article <72kehr$1gd$1@garfield.vcn.bc.ca>, dastow@vcn.bc.ca (David Stow) writes:
  20. > Thanks for the answers.  I'm going to pester you with a related 
  21. > question, but first let me explain what I want to do.
  22. > I use MS-Kermit 3.15 both for making (relatively) simple serial 
  23. > connections and for making TCP/IP connections over a PPP link.  
  24. > I use the same serial port and modem in each case, and until recently 
  25. > I used the standard mscustom.ini file without trouble. The :NOTCP port 
  26. > settings in this file matched those in the PPP initialization file.
  27. > I recently replaced my 16450 type UART with a 16550A, and when I 
  28. > started MS-Kermit over the PPP link, I got a message that Kermit 
  29. > couldn't make the connection to my host.  I took a closer look at 
  30. > the mscustom.ini file, and I suspected that I should make Kermit 
  31. > skip over the commands (like set speed) that could reset the UART 
  32. > while the PPP link was running.  When I deleted the :NOTCP part of 
  33. > the file and the "if fail forward :NOTCP" command, the TCP/IP 
  34. > connection worked again.
  35. > My guess is that resetting the UART (to the same values that the 
  36. > PPP program was using) caused a problem with the 16550A but not with 
  37. > the 16450 because of the characters that might be lost from the 
  38. > 16550A's buffer during the reset.  Does this sound right?
  39. > I want to have Kermit check when it starts to see whether the packet 
  40. > driver is running, to set the port to tcp/ip and skip the UART 
  41. > initialization if it finds the packet driver, and to set the UART 
  42. > otherwise.
  43. > Can I use the tcpip_status variable to do this?  I'm not sure I 
  44. > understand the value of this variable.  When I escape from a TCP/IP 
  45. > session to the MS-Kermit prompt and give the show variables 
  46. > command, \v(tcpip_status)=0.  Is this like opening the refrigerator 
  47. > door quickly to try to see if the light stays on when the door is closed?
  48. > David Stow
  49. ----------
  50.     The way to have MS-DOS Kermit keep hands off a UART is to avoid
  51. all references to the serial port. That means a SET PORT non-UART command
  52. issued before a SET SPEED will point operations away from a serial port.
  53.     The 16550A UART requires delicate probing, something that the
  54. conventional 8250 and relatives kind does not. It is always bad news to
  55. touch a device being handled by other software.
  56.     The check item means only that a feature is complied into the
  57. program. This is to deal with variants of MSK which have selective
  58. features omitted to save memory. It has nothing at all to do with 
  59. operational selections of this port or that.
  60.     Joe D.